home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 16 / 1 / DISK1618.ZIP / STAT.DOC < prev    next >
Text File  |  1988-09-15  |  4KB  |  247 lines

  1. This program ( STAT.EXE ) is written and compiled using
  2. Borland's Turbo Basic. It was written to answer a need
  3. for the graphic representation of data for Statistical
  4. Process Control Programs.
  5.  
  6. Menu selections are by either the cursor keys or the
  7. space bar.
  8.  
  9. All graphic displays stay on the screen until the space
  10. bar is hit to give you time to look or to print the graph.
  11.  
  12. This program presumes some level of understanding of
  13. statistics and thus, is self explanatory.
  14.  
  15. When all else fails, read the screen!
  16.  
  17. TECHNICAL NOTES
  18.  
  19. 1. Curve fitting
  20.  
  21.    a. Least Squares of the forms :
  22.  
  23.          Y = m * X + b (straight line)
  24.          Y = m1 * X + m2 * X^2 + b (one cusp)
  25.          Y = m1 * X + m2 * X^2 + m3 * X^3 + b (twp cusps)
  26.  
  27.    b. Powers of the form Y = m * X^b
  28.  
  29.  
  30.    c. Exponential of the form Y = m * e^(bX)
  31.  
  32.    d. Logarithmic of the form Y = m + b * Log (X)
  33.  
  34.    e. Multiple Regression has a maximum of 25 independent
  35.       variables.
  36.  
  37. FILE SELECTION
  38.  
  39. 1. Dbase III - This will accept III or III+ files. It will only
  40.     read numeric and date fields.
  41.  
  42. 2. LOTUS 123 - You must first name the range in LOTUS using
  43.     the /Range/Name/Create function. It is assumed that the
  44.     top ROW of the named range are the field titles. You must
  45.     also format the whole range in decimal format. The decimal
  46.     format can be different for each field.
  47.     NOTE : This will not accept range inputs such as A1..E55.
  48.  
  49. 3. STATPLOT - These files are created using this program.
  50.     You can save Dbase or Lotus files in this format after
  51.     they are read above. This is especially useful if you are
  52.     only using a small amount of a large LOTUS or Dbase file.
  53.  
  54. If you hit return, it will display the files in the current
  55. directory. If you enter a drive letter followed be a colon (:)
  56. or a path followed by back-slash (\),it will display the files
  57. as designated.
  58.  
  59. The F9 function key will store the previous drive letter or path
  60. so that you do not have to re-type the drive or path.
  61.  
  62.  
  63.  
  64.  
  65. PITFALL
  66.  
  67. If you are changing color in a monochrome system and the screen
  68. blanks, hit F1 or F3 until text appears. If you accidently
  69. hit return and save the blank screen, get out of the program by
  70. either Ctrl-Break <return><return> or soft boot. You then
  71. have to erase the color file named COLOR.DAT.
  72.  
  73. MENU TREE I
  74.  
  75. |        MAIN MENU
  76. |--------------------------
  77. |       Existing File
  78. |
  79. |          New File
  80. |
  81. |         Edit Data
  82. |
  83. |          Add Data
  84. |
  85. |         Save Data
  86. |
  87. |    Statistical Analysis
  88. |
  89. |   Data Manipulation Menu
  90. |
  91. |         System Menu
  92. |
  93. |--------------------------
  94.  
  95.  
  96. |--------------------------
  97. |    EXISTING FILE MENU
  98. |
  99. |--------------------------
  100. |
  101. |        dBASE III
  102. |
  103. |      Statplot File
  104. |
  105. |        123 - LOTUS
  106. |
  107. |        System Menu
  108. |
  109. |--------------------------
  110.  
  111.  
  112. |--------------------------
  113. |
  114. |      SYSTEM MENU
  115. |
  116. |--------------------------
  117. |
  118. |     Graphics Menu
  119. |
  120. |       Set Colors
  121. |
  122. |       View Data
  123. |
  124. |       Print Data
  125. |
  126. |      Exit Program
  127. |
  128. |       Main Menu
  129. |
  130. |--------------------------
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137. |--------------------------
  138. |
  139. |     SET COLORS
  140. |
  141. |---------------------------
  142. |
  143. | F1-UP COLOR TEXT
  144. |
  145. | F2-DOWN COLOR TEXT
  146. |
  147. | F3-UP COLOR BACKGROUND
  148. |
  149. | F4-DOWN COLOR BACKGROUND
  150. |
  151. | F5-UP COLOR BORDER
  152. |
  153. | F6-DOWN COLOR BORDER
  154. |
  155. |
  156. | EXIT WITH <CR>
  157. |
  158. |--------------------------
  159.  
  160.  
  161. |--------------------------
  162. |
  163. |  DATA MANIPULATION MENU
  164. |
  165. |--------------------------
  166. |
  167. |            Log
  168. |
  169. |        Exponential
  170. |
  171. |      Powers - Roots
  172. |
  173. |       Add Constant
  174. |
  175. |        Set Scale
  176. |
  177. |       Sort Records
  178. |
  179. |     Set Record Scope
  180. |
  181. |        System Menu
  182. |
  183. |--------------------------
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196. |--------------------------
  197. |
  198. |  GRAPHICS  MENU
  199. |
  200. |--------------------------
  201. |
  202. |      Histogram
  203. |
  204. |     Scatter Plot
  205. |
  206. |      Line Plot
  207. |
  208. |    Multi-Line Plot
  209. |
  210. |  X-Bar and R Chart
  211. |
  212. |     Pareto Chart
  213. |
  214. |      Bar Chart
  215. |
  216. |    Curve Fitting
  217. |
  218. |      System Menu
  219. |
  220. |--------------------------
  221.  
  222.  
  223. |--------------------------
  224. |
  225. |     CURVE FITTING
  226. |
  227. |--------------------------
  228. |
  229. |    Least Squares
  230. |
  231. |        Powers
  232. |
  233. |      Exponential
  234. |
  235. |       Logarithmic
  236. |
  237. |  Multiple Regression
  238. |
  239. |      System Menu
  240. |
  241. |--------------------------
  242.  
  243. Copywrite (c) Gerald Mele 1987
  244. 125 Moose Hill Road
  245. Oxford, Ct. 06483
  246. 203-888-4544
  247.